home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MS Setup Default Names.xpl < prev    next >
Text File  |  2003-06-10  |  1KB  |  45 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH"="System\User Data"
  5. "NAME"="MS Setup Default Names (9x/ME)"
  6. "OSVERSION"="101010"
  7. "VERSION"="1.12"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Name"
  10. "TEXT 2"="Company"
  11. "DESCRIPTION 1"="When you install a program from Microsoft in Windows 95/98/ME, Setup usually searches for these 2 Registry strings, and uses them as default values for your Name and Company, respectively."
  12. "DESCRIPTION 2"="NOTE: This is NOT valid for Windows NT/2000/XP/2003."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18.  
  19.  
  20. sPath="HKCU\Software\Microsoft\MS Setup (ACME)\User Info\"
  21. Sub Plugin_Initialize 
  22.  if RegPathExists(sPath) then
  23.   s=RegReadValue(sPath & "DefName")
  24.   SetUIElement 1,s
  25.  
  26.   s=RegReadValue(sPath & "DefCompany")
  27.   SetUIElement 2,s
  28.  else
  29.   Disable
  30.  end if
  31. End Sub
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  s=GetUIElement(1)
  38.  Call RegWriteValue(sPath & "DefName",s,1)
  39.  
  40.  s=GetUIElement(2)
  41.  Call RegWriteValue(sPath & "DefCompany",s,1)
  42. End Sub
  43.  
  44. Sub Plugin_Terminate
  45. End Sub